home *** CD-ROM | disk | FTP | other *** search
- /************************************************************/
- /* */
- /* Starter Code from Chapter Six of */
- /* */
- /* *** The Macintosh Programming Primer *** */
- /* */
- /* Copyright 1990, Dave Mark */
- /* */
- /* This program demonstrates specific Mac programming */
- /* techniques. */
- /* */
- /************************************************************/
-
- /*****
- * Starter.c
- *
- * A starter main file for writing programs with the
- * THINK Class Library
- *
- * Copyright © 1990 Symantec Corporation. All rights reserved.
- *
- *****/
-
- #include "CStarterApp.h"
-
- extern CApplication *gApplication;
-
- void main()
-
- {
- gApplication = new(CStarterApp);
- ((CStarterApp *)gApplication)->IStarterApp();
- gApplication->Run();
- gApplication->Exit();
- }
-